home *** CD-ROM | disk | FTP | other *** search
- .K ""
- echo "This script will install the following libraries, after checking to"
- echo "see if they are already installed:"
- echo ""
- echo " arp.library color.library iff.library ilbm.library"
- echo ""
- echo "If they are installed, it will check the version numbers of the"
- echo "installed ones, and the ones in this distribution, and give you"
- echo "the option of installing the one from this distribution."
- echo ""
-
- if not EXISTS libs:arp.library
- echo "No existing library, installing libs:arp.library..."
- copy libs/arp.library libs:arp.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:arp.library
- version libs/arp.library
- echo ""
- ask "Do you wish to overwrite libs:arp.library?"
- if WARN
- echo "Updating libs:arp.library..."
- copy libs/arp.library libs:arp.library
- endif
- endif
-
- if not EXISTS libs:color.library
- echo "No existing library, installing libs:color.library..."
- copy libs/color.library libs:color.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:color.library
- version libs/color.library
- echo ""
- ask "Do you wish to overwrite libs:color.library?"
- if WARN
- echo "Updating libs:color.library..."
- copy libs/color.library libs:color.library
- endif
- endif
-
- if not EXISTS libs:iff.library
- echo "No existing library, installing libs:iff.library..."
- copy libs/iff.library libs:iff.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:iff.library
- version libs/iff.library
- echo ""
- ask "Do you wish to overwrite libs:iff.library?"
- if WARN
- echo "Updating libs:iff.library..."
- copy libs/iff.library libs:iff.library
- endif
- endif
-
- if not EXISTS libs:ilbm.library
- echo "No existing library, installing libs:ilbm.library..."
- copy libs/ilbm.library libs:ilbm.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:ilbm.library
- version libs/ilbm.library
- echo ""
- ask "Do you wish to overwrite libs:ilbm.library?"
- if WARN
- echo "Updating libs:ilbm.library..."
- copy libs/ilbm.library libs:ilbm.library
- endif
- endif
-
- echo "All Done. Click close gadget to get rid of window."
- endcli
-